K8s (Kubernetes)
EKS
クラスター設計周り
1クラスターマルチテナンシー
Tips
code: sh
# image を確認する
kubectl get deployment xxx -o=jsonpath='{.spec.template.spec.containers0.image}' # デバッグ用途
kubectl --namespace default debug --stdin --tty <Pod名> --image curlimages/curl --target=xxx -- sh
# node 全体を describe することができる
kubectl describe node --namespace default